home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-04
/
bipl.zip
/
PROCS.ZIP
/
VERSION.ICN
< prev
next >
Wrap
Text File
|
1992-09-28
|
696b
|
27 lines
############################################################################
#
# File: version.icn
#
# Subject: Procedures to produce Icon version number
#
# Author: Ralph E. Griswold
#
# Date: September 2, 1991
#
###########################################################################
#
# This procedure produces the version number of Icon on which a
# program is running. It only works if the &version is in the
# standard form.
#
############################################################################
procedure version()
&version ? {
tab(find("Version ") + 8) | fail
tab(many('0123456789.')) ? return tab(-1)
}
end